home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / library / rename.c < prev    next >
C/C++ Source or Header  |  1995-05-28  |  3KB  |  104 lines

  1. /*
  2.  *  This file is part of ixemul.library for the Amiga.
  3.  *  Copyright (C) 1991, 1992  Markus M. Wild
  4.  *
  5.  *  This library is free software; you can redistribute it and/or
  6.  *  modify it under the terms of the GNU Library General Public
  7.  *  License as published by the Free Software Foundation; either
  8.  *  version 2 of the License, or (at your option) any later version.
  9.  *
  10.  *  This library is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  *  Library General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU Library General Public
  16.  *  License along with this library; if not, write to the Free
  17.  *  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  *
  19.  *  rename.c,v 1.1.1.1 1994/04/04 04:30:32 amiga Exp
  20.  *
  21.  *  rename.c,v
  22.  * Revision 1.1.1.1  1994/04/04  04:30:32  amiga
  23.  * Initial CVS check in.
  24.  *
  25.  *  Revision 1.1  1992/05/14  19:55:40  mwild
  26.  *  Initial revision
  27.  *
  28.  */
  29.  
  30. #define KERNEL
  31. #include "ixemul.h"
  32. #include "kprintf.h"
  33.  
  34. #if __GNUC__ != 2
  35. #define alloca __builtin_alloca
  36. #endif
  37.  
  38. struct rename_vec {
  39.   char *source_name;
  40.   BPTR target_dir_lock;
  41.   BSTR target_name;
  42. };
  43.  
  44.  
  45. static int
  46. __rename_func (struct StandardPacket *sp, struct MsgPort *handler,
  47.                BPTR parent_lock,
  48.            BSTR name,
  49.            struct rename_vec *rv, int *no_error)
  50. {
  51.   sp->sp_Pkt.dp_Type = ACTION_RENAME_OBJECT;
  52.   sp->sp_Pkt.dp_Arg1 = parent_lock;
  53.   sp->sp_Pkt.dp_Arg2 = name;
  54.   sp->sp_Pkt.dp_Arg3 = rv->target_dir_lock;
  55.   sp->sp_Pkt.dp_Arg4 = rv->target_name;
  56.   
  57.   PutPacket (handler, sp);
  58.   __wait_sync_packet (sp);
  59.  
  60.   *no_error = sp->sp_Pkt.dp_Res1 == -1;
  61.  
  62.   /* retry if necessary */
  63.   return 1;
  64. }
  65.  
  66. static int
  67. __get_target_data (struct StandardPacket *sp, struct MsgPort *handler,
  68.                    BPTR parent_lock,
  69.                BSTR name,
  70.                struct rename_vec *rv, int *no_error)
  71. {
  72.   rv->target_dir_lock = parent_lock;
  73.   rv->target_name = name;
  74.   
  75.   sp->sp_Pkt.dp_Res1 = __plock (rv->source_name, __rename_func, rv);
  76.   sp->sp_Pkt.dp_Res2 = ((struct Process *)FindTask(0))->pr_Result2;
  77.   
  78.   *no_error = sp->sp_Pkt.dp_Res1 == -1;
  79.   
  80.   /* don't retry */
  81.   return 0;
  82. }
  83.  
  84. int
  85. rename(char *from, char *to)
  86. {
  87.   int res;
  88.   struct rename_vec rv;
  89.  
  90.   rv.source_name = from;
  91.   
  92.   res = __plock (to, __get_target_data, &rv);
  93.   
  94.   if (res == 0 && IoErr() == ERROR_OBJECT_EXISTS)
  95.     {
  96.       syscall (SYS_unlink ,to);
  97.       res = __plock (to, __get_target_data, &rv);
  98.     }
  99.  
  100.   if (!res) errno = __ioerr_to_errno (IoErr ());
  101.   KPRINTF (("&errno = %lx, errno = %ld\n", &errno, errno));
  102.   return res == -1 ? 0 : -1;
  103. }
  104.